Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@burstjs/util
Advanced tools
Useful utilities and tools for building Burstcoin applications
@burstjs/http
can be used with NodeJS or Web. Two formats are available
Install using npm:
npm install @burstjs/util
or using yarn:
yarn add @burstjs/util
import {convertNumberToNQTString} from '@burstjs/util'
const value = convertNumberToNQTString(1000)
console.log(value)
<script>
Each package is available as bundled standalone library using IIFE.
This way burstJS can be used also within <script>
-Tags.
This might be useful for Wordpress and/or other PHP applications.
Just import the package using the HTML <script>
tag.
<script src='https://cdn.jsdelivr.net/npm/@burstjs/util/dist/util.crypto.min.js'></script>
const value = b$util.convertNumberToNQTString(1000)
console.log(value)
See more here:
@burstjs/util Online Documentation
boolean
string
string
Array.<number>
string
Array.<number>
string
boolean
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: static property of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Converts BURST-XXXX-XXXX-XXXX-XXXXX into numeric Id
Kind: inner method of util
Returns:
The numeric id, or undefined if address is invalid
Param | Description |
---|---|
address | The BURST address |
Converts a Burst/Block Time (seconds since genesis block) into Date
Kind: inner method of util
Returns:
Date
Param | Description |
---|---|
burstTimestamp | The numeric Id |
Converts a Burst/Block Time (seconds since genesis block) into Unix Epoch Time (milliseconds since 01.01.1970)
Kind: inner method of util
Returns:
Unix Epoch Time (milliseconds since 01.01.1970)
Param | Description |
---|---|
burstTimestamp | The numeric Id |
string
Converts byte array to hexadecimal string Inverse operation of [[convertHexStringToByteArray]]
Kind: inner method of util
Returns: string
-
A hex string representing the byte array input
Param | Default | Description |
---|---|---|
bytes | The (unsigned) byte array to be converted | |
uppercase | false | If true, converts hex string with uppercase characters (Default: false) |
string
Converts a byte array into string Inverse function [[convertStringToByteArray]]
Kind: inner method of util
Returns: string
-
The converted string
Param | Default | Description |
---|---|---|
byteArray | The byte array to be converted | |
startIndex | 0 | The starting index of array to be converted (Default: 0) |
length |
| The number of bytes to be considered, iff startIndex is given. If null the byte array's length is considered |
Converts a Date into Burst/Block Time (seconds since genesis block)
Kind: inner method of util
Returns:
The Burst Timestamp
Param | Description |
---|---|
date | The date to be converted |
Converts the endianess of a hex string. If string is little Endianess it turns into Big Endianess, and vice versa
Kind: inner method of util
Returns:
The converted string as hex string
Param | Description |
---|---|
hexString | The hex string to be converted |
Array.<number>
Converts an hexadecimal string to byte array
Kind: inner method of util
Returns: Array.<number>
-
An byte array representing the hexadecimal input
Param | Description |
---|---|
hex | The hexadecimal string to be converted |
Arbitrary length hexadecimal to decimal conversion https://stackoverflow.com/questions/21667377/javascript-hexadecimal-string-to-decimal-string
Kind: inner method of util
Returns:
A decimal string
Param | Description |
---|---|
hexStr | A hexadecimal string |
string
Converts a Hexadecimally encoded string into String Inverse function [[convertStringToHexString]]
Kind: inner method of util
Returns: string
-
The string represented by the Hex String
Param | Description |
---|---|
hex | The Hex string to be converted |
Helper method to convert a String to number
Kind: inner method of util
Returns:
A number expressed in Burst (not NQT)
exception if argument is invalid
Param | Description |
---|---|
amount | The amount in NQT |
Helper method to Number to String(8 decimals) representation
Kind: inner method of util
Returns:
a NQT number string
Param | Description |
---|---|
n | the number |
Encode a numeric id into BURST-XXXX-XXXX-XXXX-XXXXX
Kind: inner method of util
Returns:
the BURST address in Reed-Solomon encoding, or undefined if passed null, undefined
Param | Description |
---|---|
numericId | The numeric Id |
Array.<number>
Converts a string into byte array Inverse function [[convertByteArrayToString]]
Kind: inner method of util
Returns: Array.<number>
-
A byte array representing the string input
Param | Description |
---|---|
str | The string to be converted |
string
Converts/Encode a String into Hexadecimally encoded Inverse function [[convertHexStringToString]]
Kind: inner method of util
Returns: string
-
The Hex String representing the input string
Param | Description |
---|---|
str | The Hex string to be converted |
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: inner method of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Sums various NQT values and returns in Burst
Kind: inner method of util
Returns:
The sum of all amounts in BURST
Param | Description |
---|---|
...nqts | Variable amount list with NQT string |
boolean
string
string
Array.<number>
string
Array.<number>
string
boolean
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: static property of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Converts BURST-XXXX-XXXX-XXXX-XXXXX into numeric Id
Kind: inner method of util
Returns:
The numeric id, or undefined if address is invalid
Param | Description |
---|---|
address | The BURST address |
Converts a Burst/Block Time (seconds since genesis block) into Date
Kind: inner method of util
Returns:
Date
Param | Description |
---|---|
burstTimestamp | The numeric Id |
Converts a Burst/Block Time (seconds since genesis block) into Unix Epoch Time (milliseconds since 01.01.1970)
Kind: inner method of util
Returns:
Unix Epoch Time (milliseconds since 01.01.1970)
Param | Description |
---|---|
burstTimestamp | The numeric Id |
string
Converts byte array to hexadecimal string Inverse operation of [[convertHexStringToByteArray]]
Kind: inner method of util
Returns: string
-
A hex string representing the byte array input
Param | Default | Description |
---|---|---|
bytes | The (unsigned) byte array to be converted | |
uppercase | false | If true, converts hex string with uppercase characters (Default: false) |
string
Converts a byte array into string Inverse function [[convertStringToByteArray]]
Kind: inner method of util
Returns: string
-
The converted string
Param | Default | Description |
---|---|---|
byteArray | The byte array to be converted | |
startIndex | 0 | The starting index of array to be converted (Default: 0) |
length |
| The number of bytes to be considered, iff startIndex is given. If null the byte array's length is considered |
Converts a Date into Burst/Block Time (seconds since genesis block)
Kind: inner method of util
Returns:
The Burst Timestamp
Param | Description |
---|---|
date | The date to be converted |
Converts the endianess of a hex string. If string is little Endianess it turns into Big Endianess, and vice versa
Kind: inner method of util
Returns:
The converted string as hex string
Param | Description |
---|---|
hexString | The hex string to be converted |
Array.<number>
Converts an hexadecimal string to byte array
Kind: inner method of util
Returns: Array.<number>
-
An byte array representing the hexadecimal input
Param | Description |
---|---|
hex | The hexadecimal string to be converted |
Arbitrary length hexadecimal to decimal conversion https://stackoverflow.com/questions/21667377/javascript-hexadecimal-string-to-decimal-string
Kind: inner method of util
Returns:
A decimal string
Param | Description |
---|---|
hexStr | A hexadecimal string |
string
Converts a Hexadecimally encoded string into String Inverse function [[convertStringToHexString]]
Kind: inner method of util
Returns: string
-
The string represented by the Hex String
Param | Description |
---|---|
hex | The Hex string to be converted |
Helper method to convert a String to number
Kind: inner method of util
Returns:
A number expressed in Burst (not NQT)
exception if argument is invalid
Param | Description |
---|---|
amount | The amount in NQT |
Helper method to Number to String(8 decimals) representation
Kind: inner method of util
Returns:
a NQT number string
Param | Description |
---|---|
n | the number |
Encode a numeric id into BURST-XXXX-XXXX-XXXX-XXXXX
Kind: inner method of util
Returns:
the BURST address in Reed-Solomon encoding, or undefined if passed null, undefined
Param | Description |
---|---|
numericId | The numeric Id |
Array.<number>
Converts a string into byte array Inverse function [[convertByteArrayToString]]
Kind: inner method of util
Returns: Array.<number>
-
A byte array representing the string input
Param | Description |
---|---|
str | The string to be converted |
string
Converts/Encode a String into Hexadecimally encoded Inverse function [[convertHexStringToString]]
Kind: inner method of util
Returns: string
-
The Hex String representing the input string
Param | Description |
---|---|
str | The Hex string to be converted |
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: inner method of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Sums various NQT values and returns in Burst
Kind: inner method of util
Returns:
The sum of all amounts in BURST
Param | Description |
---|---|
...nqts | Variable amount list with NQT string |
boolean
string
string
Array.<number>
string
Array.<number>
string
boolean
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: static property of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Converts BURST-XXXX-XXXX-XXXX-XXXXX into numeric Id
Kind: inner method of util
Returns:
The numeric id, or undefined if address is invalid
Param | Description |
---|---|
address | The BURST address |
Converts a Burst/Block Time (seconds since genesis block) into Date
Kind: inner method of util
Returns:
Date
Param | Description |
---|---|
burstTimestamp | The numeric Id |
Converts a Burst/Block Time (seconds since genesis block) into Unix Epoch Time (milliseconds since 01.01.1970)
Kind: inner method of util
Returns:
Unix Epoch Time (milliseconds since 01.01.1970)
Param | Description |
---|---|
burstTimestamp | The numeric Id |
string
Converts byte array to hexadecimal string Inverse operation of [[convertHexStringToByteArray]]
Kind: inner method of util
Returns: string
-
A hex string representing the byte array input
Param | Default | Description |
---|---|---|
bytes | The (unsigned) byte array to be converted | |
uppercase | false | If true, converts hex string with uppercase characters (Default: false) |
string
Converts a byte array into string Inverse function [[convertStringToByteArray]]
Kind: inner method of util
Returns: string
-
The converted string
Param | Default | Description |
---|---|---|
byteArray | The byte array to be converted | |
startIndex | 0 | The starting index of array to be converted (Default: 0) |
length |
| The number of bytes to be considered, iff startIndex is given. If null the byte array's length is considered |
Converts a Date into Burst/Block Time (seconds since genesis block)
Kind: inner method of util
Returns:
The Burst Timestamp
Param | Description |
---|---|
date | The date to be converted |
Converts the endianess of a hex string. If string is little Endianess it turns into Big Endianess, and vice versa
Kind: inner method of util
Returns:
The converted string as hex string
Param | Description |
---|---|
hexString | The hex string to be converted |
Array.<number>
Converts an hexadecimal string to byte array
Kind: inner method of util
Returns: Array.<number>
-
An byte array representing the hexadecimal input
Param | Description |
---|---|
hex | The hexadecimal string to be converted |
Arbitrary length hexadecimal to decimal conversion https://stackoverflow.com/questions/21667377/javascript-hexadecimal-string-to-decimal-string
Kind: inner method of util
Returns:
A decimal string
Param | Description |
---|---|
hexStr | A hexadecimal string |
string
Converts a Hexadecimally encoded string into String Inverse function [[convertStringToHexString]]
Kind: inner method of util
Returns: string
-
The string represented by the Hex String
Param | Description |
---|---|
hex | The Hex string to be converted |
Helper method to convert a String to number
Kind: inner method of util
Returns:
A number expressed in Burst (not NQT)
exception if argument is invalid
Param | Description |
---|---|
amount | The amount in NQT |
Helper method to Number to String(8 decimals) representation
Kind: inner method of util
Returns:
a NQT number string
Param | Description |
---|---|
n | the number |
Encode a numeric id into BURST-XXXX-XXXX-XXXX-XXXXX
Kind: inner method of util
Returns:
the BURST address in Reed-Solomon encoding, or undefined if passed null, undefined
Param | Description |
---|---|
numericId | The numeric Id |
Array.<number>
Converts a string into byte array Inverse function [[convertByteArrayToString]]
Kind: inner method of util
Returns: Array.<number>
-
A byte array representing the string input
Param | Description |
---|---|
str | The string to be converted |
string
Converts/Encode a String into Hexadecimally encoded Inverse function [[convertHexStringToString]]
Kind: inner method of util
Returns: string
-
The Hex String representing the input string
Param | Description |
---|---|
str | The Hex string to be converted |
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: inner method of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Sums various NQT values and returns in Burst
Kind: inner method of util
Returns:
The sum of all amounts in BURST
Param | Description |
---|---|
...nqts | Variable amount list with NQT string |
boolean
string
string
Array.<number>
string
Array.<number>
string
boolean
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: static property of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Converts BURST-XXXX-XXXX-XXXX-XXXXX into numeric Id
Kind: inner method of util
Returns:
The numeric id, or undefined if address is invalid
Param | Description |
---|---|
address | The BURST address |
Converts a Burst/Block Time (seconds since genesis block) into Date
Kind: inner method of util
Returns:
Date
Param | Description |
---|---|
burstTimestamp | The numeric Id |
Converts a Burst/Block Time (seconds since genesis block) into Unix Epoch Time (milliseconds since 01.01.1970)
Kind: inner method of util
Returns:
Unix Epoch Time (milliseconds since 01.01.1970)
Param | Description |
---|---|
burstTimestamp | The numeric Id |
string
Converts byte array to hexadecimal string Inverse operation of [[convertHexStringToByteArray]]
Kind: inner method of util
Returns: string
-
A hex string representing the byte array input
Param | Default | Description |
---|---|---|
bytes | The (unsigned) byte array to be converted | |
uppercase | false | If true, converts hex string with uppercase characters (Default: false) |
string
Converts a byte array into string Inverse function [[convertStringToByteArray]]
Kind: inner method of util
Returns: string
-
The converted string
Param | Default | Description |
---|---|---|
byteArray | The byte array to be converted | |
startIndex | 0 | The starting index of array to be converted (Default: 0) |
length |
| The number of bytes to be considered, iff startIndex is given. If null the byte array's length is considered |
Converts a Date into Burst/Block Time (seconds since genesis block)
Kind: inner method of util
Returns:
The Burst Timestamp
Param | Description |
---|---|
date | The date to be converted |
Converts the endianess of a hex string. If string is little Endianess it turns into Big Endianess, and vice versa
Kind: inner method of util
Returns:
The converted string as hex string
Param | Description |
---|---|
hexString | The hex string to be converted |
Array.<number>
Converts an hexadecimal string to byte array
Kind: inner method of util
Returns: Array.<number>
-
An byte array representing the hexadecimal input
Param | Description |
---|---|
hex | The hexadecimal string to be converted |
Arbitrary length hexadecimal to decimal conversion https://stackoverflow.com/questions/21667377/javascript-hexadecimal-string-to-decimal-string
Kind: inner method of util
Returns:
A decimal string
Param | Description |
---|---|
hexStr | A hexadecimal string |
string
Converts a Hexadecimally encoded string into String Inverse function [[convertStringToHexString]]
Kind: inner method of util
Returns: string
-
The string represented by the Hex String
Param | Description |
---|---|
hex | The Hex string to be converted |
Helper method to convert a String to number
Kind: inner method of util
Returns:
A number expressed in Burst (not NQT)
exception if argument is invalid
Param | Description |
---|---|
amount | The amount in NQT |
Helper method to Number to String(8 decimals) representation
Kind: inner method of util
Returns:
a NQT number string
Param | Description |
---|---|
n | the number |
Encode a numeric id into BURST-XXXX-XXXX-XXXX-XXXXX
Kind: inner method of util
Returns:
the BURST address in Reed-Solomon encoding, or undefined if passed null, undefined
Param | Description |
---|---|
numericId | The numeric Id |
Array.<number>
Converts a string into byte array Inverse function [[convertByteArrayToString]]
Kind: inner method of util
Returns: Array.<number>
-
A byte array representing the string input
Param | Description |
---|---|
str | The string to be converted |
string
Converts/Encode a String into Hexadecimally encoded Inverse function [[convertHexStringToString]]
Kind: inner method of util
Returns: string
-
The Hex String representing the input string
Param | Description |
---|---|
str | The Hex string to be converted |
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: inner method of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Sums various NQT values and returns in Burst
Kind: inner method of util
Returns:
The sum of all amounts in BURST
Param | Description |
---|---|
...nqts | Variable amount list with NQT string |
boolean
string
string
Array.<number>
string
Array.<number>
string
boolean
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: static property of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Converts BURST-XXXX-XXXX-XXXX-XXXXX into numeric Id
Kind: inner method of util
Returns:
The numeric id, or undefined if address is invalid
Param | Description |
---|---|
address | The BURST address |
Converts a Burst/Block Time (seconds since genesis block) into Date
Kind: inner method of util
Returns:
Date
Param | Description |
---|---|
burstTimestamp | The numeric Id |
Converts a Burst/Block Time (seconds since genesis block) into Unix Epoch Time (milliseconds since 01.01.1970)
Kind: inner method of util
Returns:
Unix Epoch Time (milliseconds since 01.01.1970)
Param | Description |
---|---|
burstTimestamp | The numeric Id |
string
Converts byte array to hexadecimal string Inverse operation of [[convertHexStringToByteArray]]
Kind: inner method of util
Returns: string
-
A hex string representing the byte array input
Param | Default | Description |
---|---|---|
bytes | The (unsigned) byte array to be converted | |
uppercase | false | If true, converts hex string with uppercase characters (Default: false) |
string
Converts a byte array into string Inverse function [[convertStringToByteArray]]
Kind: inner method of util
Returns: string
-
The converted string
Param | Default | Description |
---|---|---|
byteArray | The byte array to be converted | |
startIndex | 0 | The starting index of array to be converted (Default: 0) |
length |
| The number of bytes to be considered, iff startIndex is given. If null the byte array's length is considered |
Converts a Date into Burst/Block Time (seconds since genesis block)
Kind: inner method of util
Returns:
The Burst Timestamp
Param | Description |
---|---|
date | The date to be converted |
Converts the endianess of a hex string. If string is little Endianess it turns into Big Endianess, and vice versa
Kind: inner method of util
Returns:
The converted string as hex string
Param | Description |
---|---|
hexString | The hex string to be converted |
Array.<number>
Converts an hexadecimal string to byte array
Kind: inner method of util
Returns: Array.<number>
-
An byte array representing the hexadecimal input
Param | Description |
---|---|
hex | The hexadecimal string to be converted |
Arbitrary length hexadecimal to decimal conversion https://stackoverflow.com/questions/21667377/javascript-hexadecimal-string-to-decimal-string
Kind: inner method of util
Returns:
A decimal string
Param | Description |
---|---|
hexStr | A hexadecimal string |
string
Converts a Hexadecimally encoded string into String Inverse function [[convertStringToHexString]]
Kind: inner method of util
Returns: string
-
The string represented by the Hex String
Param | Description |
---|---|
hex | The Hex string to be converted |
Helper method to convert a String to number
Kind: inner method of util
Returns:
A number expressed in Burst (not NQT)
exception if argument is invalid
Param | Description |
---|---|
amount | The amount in NQT |
Helper method to Number to String(8 decimals) representation
Kind: inner method of util
Returns:
a NQT number string
Param | Description |
---|---|
n | the number |
Encode a numeric id into BURST-XXXX-XXXX-XXXX-XXXXX
Kind: inner method of util
Returns:
the BURST address in Reed-Solomon encoding, or undefined if passed null, undefined
Param | Description |
---|---|
numericId | The numeric Id |
Array.<number>
Converts a string into byte array Inverse function [[convertByteArrayToString]]
Kind: inner method of util
Returns: Array.<number>
-
A byte array representing the string input
Param | Description |
---|---|
str | The string to be converted |
string
Converts/Encode a String into Hexadecimally encoded Inverse function [[convertHexStringToString]]
Kind: inner method of util
Returns: string
-
The Hex String representing the input string
Param | Description |
---|---|
str | The Hex string to be converted |
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: inner method of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Sums various NQT values and returns in Burst
Kind: inner method of util
Returns:
The sum of all amounts in BURST
Param | Description |
---|---|
...nqts | Variable amount list with NQT string |
boolean
string
string
Array.<number>
string
Array.<number>
string
boolean
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: static property of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Converts BURST-XXXX-XXXX-XXXX-XXXXX into numeric Id
Kind: inner method of util
Returns:
The numeric id, or undefined if address is invalid
Param | Description |
---|---|
address | The BURST address |
Converts a Burst/Block Time (seconds since genesis block) into Date
Kind: inner method of util
Returns:
Date
Param | Description |
---|---|
burstTimestamp | The numeric Id |
Converts a Burst/Block Time (seconds since genesis block) into Unix Epoch Time (milliseconds since 01.01.1970)
Kind: inner method of util
Returns:
Unix Epoch Time (milliseconds since 01.01.1970)
Param | Description |
---|---|
burstTimestamp | The numeric Id |
string
Converts byte array to hexadecimal string Inverse operation of [[convertHexStringToByteArray]]
Kind: inner method of util
Returns: string
-
A hex string representing the byte array input
Param | Default | Description |
---|---|---|
bytes | The (unsigned) byte array to be converted | |
uppercase | false | If true, converts hex string with uppercase characters (Default: false) |
string
Converts a byte array into string Inverse function [[convertStringToByteArray]]
Kind: inner method of util
Returns: string
-
The converted string
Param | Default | Description |
---|---|---|
byteArray | The byte array to be converted | |
startIndex | 0 | The starting index of array to be converted (Default: 0) |
length |
| The number of bytes to be considered, iff startIndex is given. If null the byte array's length is considered |
Converts a Date into Burst/Block Time (seconds since genesis block)
Kind: inner method of util
Returns:
The Burst Timestamp
Param | Description |
---|---|
date | The date to be converted |
Converts the endianess of a hex string. If string is little Endianess it turns into Big Endianess, and vice versa
Kind: inner method of util
Returns:
The converted string as hex string
Param | Description |
---|---|
hexString | The hex string to be converted |
Array.<number>
Converts an hexadecimal string to byte array
Kind: inner method of util
Returns: Array.<number>
-
An byte array representing the hexadecimal input
Param | Description |
---|---|
hex | The hexadecimal string to be converted |
Arbitrary length hexadecimal to decimal conversion https://stackoverflow.com/questions/21667377/javascript-hexadecimal-string-to-decimal-string
Kind: inner method of util
Returns:
A decimal string
Param | Description |
---|---|
hexStr | A hexadecimal string |
string
Converts a Hexadecimally encoded string into String Inverse function [[convertStringToHexString]]
Kind: inner method of util
Returns: string
-
The string represented by the Hex String
Param | Description |
---|---|
hex | The Hex string to be converted |
Helper method to convert a String to number
Kind: inner method of util
Returns:
A number expressed in Burst (not NQT)
exception if argument is invalid
Param | Description |
---|---|
amount | The amount in NQT |
Helper method to Number to String(8 decimals) representation
Kind: inner method of util
Returns:
a NQT number string
Param | Description |
---|---|
n | the number |
Encode a numeric id into BURST-XXXX-XXXX-XXXX-XXXXX
Kind: inner method of util
Returns:
the BURST address in Reed-Solomon encoding, or undefined if passed null, undefined
Param | Description |
---|---|
numericId | The numeric Id |
Array.<number>
Converts a string into byte array Inverse function [[convertByteArrayToString]]
Kind: inner method of util
Returns: Array.<number>
-
A byte array representing the string input
Param | Description |
---|---|
str | The string to be converted |
string
Converts/Encode a String into Hexadecimally encoded Inverse function [[convertHexStringToString]]
Kind: inner method of util
Returns: string
-
The Hex String representing the input string
Param | Description |
---|---|
str | The Hex string to be converted |
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: inner method of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Sums various NQT values and returns in Burst
Kind: inner method of util
Returns:
The sum of all amounts in BURST
Param | Description |
---|---|
...nqts | Variable amount list with NQT string |
boolean
string
string
Array.<number>
string
Array.<number>
string
boolean
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: static property of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Converts BURST-XXXX-XXXX-XXXX-XXXXX into numeric Id
Kind: inner method of util
Returns:
The numeric id, or undefined if address is invalid
Param | Description |
---|---|
address | The BURST address |
Converts a Burst/Block Time (seconds since genesis block) into Date
Kind: inner method of util
Returns:
Date
Param | Description |
---|---|
burstTimestamp | The numeric Id |
Converts a Burst/Block Time (seconds since genesis block) into Unix Epoch Time (milliseconds since 01.01.1970)
Kind: inner method of util
Returns:
Unix Epoch Time (milliseconds since 01.01.1970)
Param | Description |
---|---|
burstTimestamp | The numeric Id |
string
Converts byte array to hexadecimal string Inverse operation of [[convertHexStringToByteArray]]
Kind: inner method of util
Returns: string
-
A hex string representing the byte array input
Param | Default | Description |
---|---|---|
bytes | The (unsigned) byte array to be converted | |
uppercase | false | If true, converts hex string with uppercase characters (Default: false) |
string
Converts a byte array into string Inverse function [[convertStringToByteArray]]
Kind: inner method of util
Returns: string
-
The converted string
Param | Default | Description |
---|---|---|
byteArray | The byte array to be converted | |
startIndex | 0 | The starting index of array to be converted (Default: 0) |
length |
| The number of bytes to be considered, iff startIndex is given. If null the byte array's length is considered |
Converts a Date into Burst/Block Time (seconds since genesis block)
Kind: inner method of util
Returns:
The Burst Timestamp
Param | Description |
---|---|
date | The date to be converted |
Converts the endianess of a hex string. If string is little Endianess it turns into Big Endianess, and vice versa
Kind: inner method of util
Returns:
The converted string as hex string
Param | Description |
---|---|
hexString | The hex string to be converted |
Array.<number>
Converts an hexadecimal string to byte array
Kind: inner method of util
Returns: Array.<number>
-
An byte array representing the hexadecimal input
Param | Description |
---|---|
hex | The hexadecimal string to be converted |
Arbitrary length hexadecimal to decimal conversion https://stackoverflow.com/questions/21667377/javascript-hexadecimal-string-to-decimal-string
Kind: inner method of util
Returns:
A decimal string
Param | Description |
---|---|
hexStr | A hexadecimal string |
string
Converts a Hexadecimally encoded string into String Inverse function [[convertStringToHexString]]
Kind: inner method of util
Returns: string
-
The string represented by the Hex String
Param | Description |
---|---|
hex | The Hex string to be converted |
Helper method to convert a String to number
Kind: inner method of util
Returns:
A number expressed in Burst (not NQT)
exception if argument is invalid
Param | Description |
---|---|
amount | The amount in NQT |
Helper method to Number to String(8 decimals) representation
Kind: inner method of util
Returns:
a NQT number string
Param | Description |
---|---|
n | the number |
Encode a numeric id into BURST-XXXX-XXXX-XXXX-XXXXX
Kind: inner method of util
Returns:
the BURST address in Reed-Solomon encoding, or undefined if passed null, undefined
Param | Description |
---|---|
numericId | The numeric Id |
Array.<number>
Converts a string into byte array Inverse function [[convertByteArrayToString]]
Kind: inner method of util
Returns: Array.<number>
-
A byte array representing the string input
Param | Description |
---|---|
str | The string to be converted |
string
Converts/Encode a String into Hexadecimally encoded Inverse function [[convertHexStringToString]]
Kind: inner method of util
Returns: string
-
The Hex String representing the input string
Param | Description |
---|---|
str | The Hex string to be converted |
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: inner method of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Sums various NQT values and returns in Burst
Kind: inner method of util
Returns:
The sum of all amounts in BURST
Param | Description |
---|---|
...nqts | Variable amount list with NQT string |
boolean
string
string
Array.<number>
string
Array.<number>
string
boolean
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: static property of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Converts BURST-XXXX-XXXX-XXXX-XXXXX into numeric Id
Kind: inner method of util
Returns:
The numeric id, or undefined if address is invalid
Param | Description |
---|---|
address | The BURST address |
Converts a Burst/Block Time (seconds since genesis block) into Date
Kind: inner method of util
Returns:
Date
Param | Description |
---|---|
burstTimestamp | The numeric Id |
Converts a Burst/Block Time (seconds since genesis block) into Unix Epoch Time (milliseconds since 01.01.1970)
Kind: inner method of util
Returns:
Unix Epoch Time (milliseconds since 01.01.1970)
Param | Description |
---|---|
burstTimestamp | The numeric Id |
string
Converts byte array to hexadecimal string Inverse operation of [[convertHexStringToByteArray]]
Kind: inner method of util
Returns: string
-
A hex string representing the byte array input
Param | Default | Description |
---|---|---|
bytes | The (unsigned) byte array to be converted | |
uppercase | false | If true, converts hex string with uppercase characters (Default: false) |
string
Converts a byte array into string Inverse function [[convertStringToByteArray]]
Kind: inner method of util
Returns: string
-
The converted string
Param | Default | Description |
---|---|---|
byteArray | The byte array to be converted | |
startIndex | 0 | The starting index of array to be converted (Default: 0) |
length |
| The number of bytes to be considered, iff startIndex is given. If null the byte array's length is considered |
Converts a Date into Burst/Block Time (seconds since genesis block)
Kind: inner method of util
Returns:
The Burst Timestamp
Param | Description |
---|---|
date | The date to be converted |
Converts the endianess of a hex string. If string is little Endianess it turns into Big Endianess, and vice versa
Kind: inner method of util
Returns:
The converted string as hex string
Param | Description |
---|---|
hexString | The hex string to be converted |
Array.<number>
Converts an hexadecimal string to byte array
Kind: inner method of util
Returns: Array.<number>
-
An byte array representing the hexadecimal input
Param | Description |
---|---|
hex | The hexadecimal string to be converted |
Arbitrary length hexadecimal to decimal conversion https://stackoverflow.com/questions/21667377/javascript-hexadecimal-string-to-decimal-string
Kind: inner method of util
Returns:
A decimal string
Param | Description |
---|---|
hexStr | A hexadecimal string |
string
Converts a Hexadecimally encoded string into String Inverse function [[convertStringToHexString]]
Kind: inner method of util
Returns: string
-
The string represented by the Hex String
Param | Description |
---|---|
hex | The Hex string to be converted |
Helper method to convert a String to number
Kind: inner method of util
Returns:
A number expressed in Burst (not NQT)
exception if argument is invalid
Param | Description |
---|---|
amount | The amount in NQT |
Helper method to Number to String(8 decimals) representation
Kind: inner method of util
Returns:
a NQT number string
Param | Description |
---|---|
n | the number |
Encode a numeric id into BURST-XXXX-XXXX-XXXX-XXXXX
Kind: inner method of util
Returns:
the BURST address in Reed-Solomon encoding, or undefined if passed null, undefined
Param | Description |
---|---|
numericId | The numeric Id |
Array.<number>
Converts a string into byte array Inverse function [[convertByteArrayToString]]
Kind: inner method of util
Returns: Array.<number>
-
A byte array representing the string input
Param | Description |
---|---|
str | The string to be converted |
string
Converts/Encode a String into Hexadecimally encoded Inverse function [[convertHexStringToString]]
Kind: inner method of util
Returns: string
-
The Hex String representing the input string
Param | Description |
---|---|
str | The Hex string to be converted |
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: inner method of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Sums various NQT values and returns in Burst
Kind: inner method of util
Returns:
The sum of all amounts in BURST
Param | Description |
---|---|
...nqts | Variable amount list with NQT string |
boolean
string
string
Array.<number>
string
Array.<number>
string
boolean
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: static property of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Converts BURST-XXXX-XXXX-XXXX-XXXXX into numeric Id
Kind: inner method of util
Returns:
The numeric id, or undefined if address is invalid
Param | Description |
---|---|
address | The BURST address |
Converts a Burst/Block Time (seconds since genesis block) into Date
Kind: inner method of util
Returns:
Date
Param | Description |
---|---|
burstTimestamp | The numeric Id |
Converts a Burst/Block Time (seconds since genesis block) into Unix Epoch Time (milliseconds since 01.01.1970)
Kind: inner method of util
Returns:
Unix Epoch Time (milliseconds since 01.01.1970)
Param | Description |
---|---|
burstTimestamp | The numeric Id |
string
Converts byte array to hexadecimal string Inverse operation of [[convertHexStringToByteArray]]
Kind: inner method of util
Returns: string
-
A hex string representing the byte array input
Param | Default | Description |
---|---|---|
bytes | The (unsigned) byte array to be converted | |
uppercase | false | If true, converts hex string with uppercase characters (Default: false) |
string
Converts a byte array into string Inverse function [[convertStringToByteArray]]
Kind: inner method of util
Returns: string
-
The converted string
Param | Default | Description |
---|---|---|
byteArray | The byte array to be converted | |
startIndex | 0 | The starting index of array to be converted (Default: 0) |
length |
| The number of bytes to be considered, iff startIndex is given. If null the byte array's length is considered |
Converts a Date into Burst/Block Time (seconds since genesis block)
Kind: inner method of util
Returns:
The Burst Timestamp
Param | Description |
---|---|
date | The date to be converted |
Converts the endianess of a hex string. If string is little Endianess it turns into Big Endianess, and vice versa
Kind: inner method of util
Returns:
The converted string as hex string
Param | Description |
---|---|
hexString | The hex string to be converted |
Array.<number>
Converts an hexadecimal string to byte array
Kind: inner method of util
Returns: Array.<number>
-
An byte array representing the hexadecimal input
Param | Description |
---|---|
hex | The hexadecimal string to be converted |
Arbitrary length hexadecimal to decimal conversion https://stackoverflow.com/questions/21667377/javascript-hexadecimal-string-to-decimal-string
Kind: inner method of util
Returns:
A decimal string
Param | Description |
---|---|
hexStr | A hexadecimal string |
string
Converts a Hexadecimally encoded string into String Inverse function [[convertStringToHexString]]
Kind: inner method of util
Returns: string
-
The string represented by the Hex String
Param | Description |
---|---|
hex | The Hex string to be converted |
Helper method to convert a String to number
Kind: inner method of util
Returns:
A number expressed in Burst (not NQT)
exception if argument is invalid
Param | Description |
---|---|
amount | The amount in NQT |
Helper method to Number to String(8 decimals) representation
Kind: inner method of util
Returns:
a NQT number string
Param | Description |
---|---|
n | the number |
Encode a numeric id into BURST-XXXX-XXXX-XXXX-XXXXX
Kind: inner method of util
Returns:
the BURST address in Reed-Solomon encoding, or undefined if passed null, undefined
Param | Description |
---|---|
numericId | The numeric Id |
Array.<number>
Converts a string into byte array Inverse function [[convertByteArrayToString]]
Kind: inner method of util
Returns: Array.<number>
-
A byte array representing the string input
Param | Description |
---|---|
str | The string to be converted |
string
Converts/Encode a String into Hexadecimally encoded Inverse function [[convertHexStringToString]]
Kind: inner method of util
Returns: string
-
The Hex String representing the input string
Param | Description |
---|---|
str | The Hex string to be converted |
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: inner method of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Sums various NQT values and returns in Burst
Kind: inner method of util
Returns:
The sum of all amounts in BURST
Param | Description |
---|---|
...nqts | Variable amount list with NQT string |
boolean
string
string
Array.<number>
string
Array.<number>
string
boolean
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: static property of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Converts BURST-XXXX-XXXX-XXXX-XXXXX into numeric Id
Kind: inner method of util
Returns:
The numeric id, or undefined if address is invalid
Param | Description |
---|---|
address | The BURST address |
Converts a Burst/Block Time (seconds since genesis block) into Date
Kind: inner method of util
Returns:
Date
Param | Description |
---|---|
burstTimestamp | The numeric Id |
Converts a Burst/Block Time (seconds since genesis block) into Unix Epoch Time (milliseconds since 01.01.1970)
Kind: inner method of util
Returns:
Unix Epoch Time (milliseconds since 01.01.1970)
Param | Description |
---|---|
burstTimestamp | The numeric Id |
string
Converts byte array to hexadecimal string Inverse operation of [[convertHexStringToByteArray]]
Kind: inner method of util
Returns: string
-
A hex string representing the byte array input
Param | Default | Description |
---|---|---|
bytes | The (unsigned) byte array to be converted | |
uppercase | false | If true, converts hex string with uppercase characters (Default: false) |
string
Converts a byte array into string Inverse function [[convertStringToByteArray]]
Kind: inner method of util
Returns: string
-
The converted string
Param | Default | Description |
---|---|---|
byteArray | The byte array to be converted | |
startIndex | 0 | The starting index of array to be converted (Default: 0) |
length |
| The number of bytes to be considered, iff startIndex is given. If null the byte array's length is considered |
Converts a Date into Burst/Block Time (seconds since genesis block)
Kind: inner method of util
Returns:
The Burst Timestamp
Param | Description |
---|---|
date | The date to be converted |
Converts the endianess of a hex string. If string is little Endianess it turns into Big Endianess, and vice versa
Kind: inner method of util
Returns:
The converted string as hex string
Param | Description |
---|---|
hexString | The hex string to be converted |
Array.<number>
Converts an hexadecimal string to byte array
Kind: inner method of util
Returns: Array.<number>
-
An byte array representing the hexadecimal input
Param | Description |
---|---|
hex | The hexadecimal string to be converted |
Arbitrary length hexadecimal to decimal conversion https://stackoverflow.com/questions/21667377/javascript-hexadecimal-string-to-decimal-string
Kind: inner method of util
Returns:
A decimal string
Param | Description |
---|---|
hexStr | A hexadecimal string |
string
Converts a Hexadecimally encoded string into String Inverse function [[convertStringToHexString]]
Kind: inner method of util
Returns: string
-
The string represented by the Hex String
Param | Description |
---|---|
hex | The Hex string to be converted |
Helper method to convert a String to number
Kind: inner method of util
Returns:
A number expressed in Burst (not NQT)
exception if argument is invalid
Param | Description |
---|---|
amount | The amount in NQT |
Helper method to Number to String(8 decimals) representation
Kind: inner method of util
Returns:
a NQT number string
Param | Description |
---|---|
n | the number |
Encode a numeric id into BURST-XXXX-XXXX-XXXX-XXXXX
Kind: inner method of util
Returns:
the BURST address in Reed-Solomon encoding, or undefined if passed null, undefined
Param | Description |
---|---|
numericId | The numeric Id |
Array.<number>
Converts a string into byte array Inverse function [[convertByteArrayToString]]
Kind: inner method of util
Returns: Array.<number>
-
A byte array representing the string input
Param | Description |
---|---|
str | The string to be converted |
string
Converts/Encode a String into Hexadecimally encoded Inverse function [[convertHexStringToString]]
Kind: inner method of util
Returns: string
-
The Hex String representing the input string
Param | Description |
---|---|
str | The Hex string to be converted |
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: inner method of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Sums various NQT values and returns in Burst
Kind: inner method of util
Returns:
The sum of all amounts in BURST
Param | Description |
---|---|
...nqts | Variable amount list with NQT string |
boolean
string
string
Array.<number>
string
Array.<number>
string
boolean
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: static property of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Converts BURST-XXXX-XXXX-XXXX-XXXXX into numeric Id
Kind: inner method of util
Returns:
The numeric id, or undefined if address is invalid
Param | Description |
---|---|
address | The BURST address |
Converts a Burst/Block Time (seconds since genesis block) into Date
Kind: inner method of util
Returns:
Date
Param | Description |
---|---|
burstTimestamp | The numeric Id |
Converts a Burst/Block Time (seconds since genesis block) into Unix Epoch Time (milliseconds since 01.01.1970)
Kind: inner method of util
Returns:
Unix Epoch Time (milliseconds since 01.01.1970)
Param | Description |
---|---|
burstTimestamp | The numeric Id |
string
Converts byte array to hexadecimal string Inverse operation of [[convertHexStringToByteArray]]
Kind: inner method of util
Returns: string
-
A hex string representing the byte array input
Param | Default | Description |
---|---|---|
bytes | The (unsigned) byte array to be converted | |
uppercase | false | If true, converts hex string with uppercase characters (Default: false) |
string
Converts a byte array into string Inverse function [[convertStringToByteArray]]
Kind: inner method of util
Returns: string
-
The converted string
Param | Default | Description |
---|---|---|
byteArray | The byte array to be converted | |
startIndex | 0 | The starting index of array to be converted (Default: 0) |
length |
| The number of bytes to be considered, iff startIndex is given. If null the byte array's length is considered |
Converts a Date into Burst/Block Time (seconds since genesis block)
Kind: inner method of util
Returns:
The Burst Timestamp
Param | Description |
---|---|
date | The date to be converted |
Converts the endianess of a hex string. If string is little Endianess it turns into Big Endianess, and vice versa
Kind: inner method of util
Returns:
The converted string as hex string
Param | Description |
---|---|
hexString | The hex string to be converted |
Array.<number>
Converts an hexadecimal string to byte array
Kind: inner method of util
Returns: Array.<number>
-
An byte array representing the hexadecimal input
Param | Description |
---|---|
hex | The hexadecimal string to be converted |
Arbitrary length hexadecimal to decimal conversion https://stackoverflow.com/questions/21667377/javascript-hexadecimal-string-to-decimal-string
Kind: inner method of util
Returns:
A decimal string
Param | Description |
---|---|
hexStr | A hexadecimal string |
string
Converts a Hexadecimally encoded string into String Inverse function [[convertStringToHexString]]
Kind: inner method of util
Returns: string
-
The string represented by the Hex String
Param | Description |
---|---|
hex | The Hex string to be converted |
Helper method to convert a String to number
Kind: inner method of util
Returns:
A number expressed in Burst (not NQT)
exception if argument is invalid
Param | Description |
---|---|
amount | The amount in NQT |
Helper method to Number to String(8 decimals) representation
Kind: inner method of util
Returns:
a NQT number string
Param | Description |
---|---|
n | the number |
Encode a numeric id into BURST-XXXX-XXXX-XXXX-XXXXX
Kind: inner method of util
Returns:
the BURST address in Reed-Solomon encoding, or undefined if passed null, undefined
Param | Description |
---|---|
numericId | The numeric Id |
Array.<number>
Converts a string into byte array Inverse function [[convertByteArrayToString]]
Kind: inner method of util
Returns: Array.<number>
-
A byte array representing the string input
Param | Description |
---|---|
str | The string to be converted |
string
Converts/Encode a String into Hexadecimally encoded Inverse function [[convertHexStringToString]]
Kind: inner method of util
Returns: string
-
The Hex String representing the input string
Param | Description |
---|---|
str | The Hex string to be converted |
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: inner method of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Sums various NQT values and returns in Burst
Kind: inner method of util
Returns:
The sum of all amounts in BURST
Param | Description |
---|---|
...nqts | Variable amount list with NQT string |
boolean
string
string
Array.<number>
string
Array.<number>
string
boolean
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: static property of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Converts BURST-XXXX-XXXX-XXXX-XXXXX into numeric Id
Kind: inner method of util
Returns:
The numeric id, or undefined if address is invalid
Param | Description |
---|---|
address | The BURST address |
Converts a Burst/Block Time (seconds since genesis block) into Date
Kind: inner method of util
Returns:
Date
Param | Description |
---|---|
burstTimestamp | The numeric Id |
Converts a Burst/Block Time (seconds since genesis block) into Unix Epoch Time (milliseconds since 01.01.1970)
Kind: inner method of util
Returns:
Unix Epoch Time (milliseconds since 01.01.1970)
Param | Description |
---|---|
burstTimestamp | The numeric Id |
string
Converts byte array to hexadecimal string Inverse operation of [[convertHexStringToByteArray]]
Kind: inner method of util
Returns: string
-
A hex string representing the byte array input
Param | Default | Description |
---|---|---|
bytes | The (unsigned) byte array to be converted | |
uppercase | false | If true, converts hex string with uppercase characters (Default: false) |
string
Converts a byte array into string Inverse function [[convertStringToByteArray]]
Kind: inner method of util
Returns: string
-
The converted string
Param | Default | Description |
---|---|---|
byteArray | The byte array to be converted | |
startIndex | 0 | The starting index of array to be converted (Default: 0) |
length |
| The number of bytes to be considered, iff startIndex is given. If null the byte array's length is considered |
Converts a Date into Burst/Block Time (seconds since genesis block)
Kind: inner method of util
Returns:
The Burst Timestamp
Param | Description |
---|---|
date | The date to be converted |
Converts the endianess of a hex string. If string is little Endianess it turns into Big Endianess, and vice versa
Kind: inner method of util
Returns:
The converted string as hex string
Param | Description |
---|---|
hexString | The hex string to be converted |
Array.<number>
Converts an hexadecimal string to byte array
Kind: inner method of util
Returns: Array.<number>
-
An byte array representing the hexadecimal input
Param | Description |
---|---|
hex | The hexadecimal string to be converted |
Arbitrary length hexadecimal to decimal conversion https://stackoverflow.com/questions/21667377/javascript-hexadecimal-string-to-decimal-string
Kind: inner method of util
Returns:
A decimal string
Param | Description |
---|---|
hexStr | A hexadecimal string |
string
Converts a Hexadecimally encoded string into String Inverse function [[convertStringToHexString]]
Kind: inner method of util
Returns: string
-
The string represented by the Hex String
Param | Description |
---|---|
hex | The Hex string to be converted |
Helper method to convert a String to number
Kind: inner method of util
Returns:
A number expressed in Burst (not NQT)
exception if argument is invalid
Param | Description |
---|---|
amount | The amount in NQT |
Helper method to Number to String(8 decimals) representation
Kind: inner method of util
Returns:
a NQT number string
Param | Description |
---|---|
n | the number |
Encode a numeric id into BURST-XXXX-XXXX-XXXX-XXXXX
Kind: inner method of util
Returns:
the BURST address in Reed-Solomon encoding, or undefined if passed null, undefined
Param | Description |
---|---|
numericId | The numeric Id |
Array.<number>
Converts a string into byte array Inverse function [[convertByteArrayToString]]
Kind: inner method of util
Returns: Array.<number>
-
A byte array representing the string input
Param | Description |
---|---|
str | The string to be converted |
string
Converts/Encode a String into Hexadecimally encoded Inverse function [[convertHexStringToString]]
Kind: inner method of util
Returns: string
-
The Hex String representing the input string
Param | Description |
---|---|
str | The Hex string to be converted |
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: inner method of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Sums various NQT values and returns in Burst
Kind: inner method of util
Returns:
The sum of all amounts in BURST
Param | Description |
---|---|
...nqts | Variable amount list with NQT string |
boolean
string
string
Array.<number>
string
Array.<number>
string
boolean
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: static property of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Converts BURST-XXXX-XXXX-XXXX-XXXXX into numeric Id
Kind: inner method of util
Returns:
The numeric id, or undefined if address is invalid
Param | Description |
---|---|
address | The BURST address |
Converts a Burst/Block Time (seconds since genesis block) into Date
Kind: inner method of util
Returns:
Date
Param | Description |
---|---|
burstTimestamp | The numeric Id |
Converts a Burst/Block Time (seconds since genesis block) into Unix Epoch Time (milliseconds since 01.01.1970)
Kind: inner method of util
Returns:
Unix Epoch Time (milliseconds since 01.01.1970)
Param | Description |
---|---|
burstTimestamp | The numeric Id |
string
Converts byte array to hexadecimal string Inverse operation of [[convertHexStringToByteArray]]
Kind: inner method of util
Returns: string
-
A hex string representing the byte array input
Param | Default | Description |
---|---|---|
bytes | The (unsigned) byte array to be converted | |
uppercase | false | If true, converts hex string with uppercase characters (Default: false) |
string
Converts a byte array into string Inverse function [[convertStringToByteArray]]
Kind: inner method of util
Returns: string
-
The converted string
Param | Default | Description |
---|---|---|
byteArray | The byte array to be converted | |
startIndex | 0 | The starting index of array to be converted (Default: 0) |
length |
| The number of bytes to be considered, iff startIndex is given. If null the byte array's length is considered |
Converts a Date into Burst/Block Time (seconds since genesis block)
Kind: inner method of util
Returns:
The Burst Timestamp
Param | Description |
---|---|
date | The date to be converted |
Converts the endianess of a hex string. If string is little Endianess it turns into Big Endianess, and vice versa
Kind: inner method of util
Returns:
The converted string as hex string
Param | Description |
---|---|
hexString | The hex string to be converted |
Array.<number>
Converts an hexadecimal string to byte array
Kind: inner method of util
Returns: Array.<number>
-
An byte array representing the hexadecimal input
Param | Description |
---|---|
hex | The hexadecimal string to be converted |
Arbitrary length hexadecimal to decimal conversion https://stackoverflow.com/questions/21667377/javascript-hexadecimal-string-to-decimal-string
Kind: inner method of util
Returns:
A decimal string
Param | Description |
---|---|
hexStr | A hexadecimal string |
string
Converts a Hexadecimally encoded string into String Inverse function [[convertStringToHexString]]
Kind: inner method of util
Returns: string
-
The string represented by the Hex String
Param | Description |
---|---|
hex | The Hex string to be converted |
Helper method to convert a String to number
Kind: inner method of util
Returns:
A number expressed in Burst (not NQT)
exception if argument is invalid
Param | Description |
---|---|
amount | The amount in NQT |
Helper method to Number to String(8 decimals) representation
Kind: inner method of util
Returns:
a NQT number string
Param | Description |
---|---|
n | the number |
Encode a numeric id into BURST-XXXX-XXXX-XXXX-XXXXX
Kind: inner method of util
Returns:
the BURST address in Reed-Solomon encoding, or undefined if passed null, undefined
Param | Description |
---|---|
numericId | The numeric Id |
Array.<number>
Converts a string into byte array Inverse function [[convertByteArrayToString]]
Kind: inner method of util
Returns: Array.<number>
-
A byte array representing the string input
Param | Description |
---|---|
str | The string to be converted |
string
Converts/Encode a String into Hexadecimally encoded Inverse function [[convertHexStringToString]]
Kind: inner method of util
Returns: string
-
The Hex String representing the input string
Param | Description |
---|---|
str | The Hex string to be converted |
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: inner method of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Sums various NQT values and returns in Burst
Kind: inner method of util
Returns:
The sum of all amounts in BURST
Param | Description |
---|---|
...nqts | Variable amount list with NQT string |
boolean
string
string
Array.<number>
string
Array.<number>
string
boolean
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: static property of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Converts BURST-XXXX-XXXX-XXXX-XXXXX into numeric Id
Kind: inner method of util
Returns:
The numeric id, or undefined if address is invalid
Param | Description |
---|---|
address | The BURST address |
Converts a Burst/Block Time (seconds since genesis block) into Date
Kind: inner method of util
Returns:
Date
Param | Description |
---|---|
burstTimestamp | The numeric Id |
Converts a Burst/Block Time (seconds since genesis block) into Unix Epoch Time (milliseconds since 01.01.1970)
Kind: inner method of util
Returns:
Unix Epoch Time (milliseconds since 01.01.1970)
Param | Description |
---|---|
burstTimestamp | The numeric Id |
string
Converts byte array to hexadecimal string Inverse operation of [[convertHexStringToByteArray]]
Kind: inner method of util
Returns: string
-
A hex string representing the byte array input
Param | Default | Description |
---|---|---|
bytes | The (unsigned) byte array to be converted | |
uppercase | false | If true, converts hex string with uppercase characters (Default: false) |
string
Converts a byte array into string Inverse function [[convertStringToByteArray]]
Kind: inner method of util
Returns: string
-
The converted string
Param | Default | Description |
---|---|---|
byteArray | The byte array to be converted | |
startIndex | 0 | The starting index of array to be converted (Default: 0) |
length |
| The number of bytes to be considered, iff startIndex is given. If null the byte array's length is considered |
Converts a Date into Burst/Block Time (seconds since genesis block)
Kind: inner method of util
Returns:
The Burst Timestamp
Param | Description |
---|---|
date | The date to be converted |
Converts the endianess of a hex string. If string is little Endianess it turns into Big Endianess, and vice versa
Kind: inner method of util
Returns:
The converted string as hex string
Param | Description |
---|---|
hexString | The hex string to be converted |
Array.<number>
Converts an hexadecimal string to byte array
Kind: inner method of util
Returns: Array.<number>
-
An byte array representing the hexadecimal input
Param | Description |
---|---|
hex | The hexadecimal string to be converted |
Arbitrary length hexadecimal to decimal conversion https://stackoverflow.com/questions/21667377/javascript-hexadecimal-string-to-decimal-string
Kind: inner method of util
Returns:
A decimal string
Param | Description |
---|---|
hexStr | A hexadecimal string |
string
Converts a Hexadecimally encoded string into String Inverse function [[convertStringToHexString]]
Kind: inner method of util
Returns: string
-
The string represented by the Hex String
Param | Description |
---|---|
hex | The Hex string to be converted |
Helper method to convert a String to number
Kind: inner method of util
Returns:
A number expressed in Burst (not NQT)
exception if argument is invalid
Param | Description |
---|---|
amount | The amount in NQT |
Helper method to Number to String(8 decimals) representation
Kind: inner method of util
Returns:
a NQT number string
Param | Description |
---|---|
n | the number |
Encode a numeric id into BURST-XXXX-XXXX-XXXX-XXXXX
Kind: inner method of util
Returns:
the BURST address in Reed-Solomon encoding, or undefined if passed null, undefined
Param | Description |
---|---|
numericId | The numeric Id |
Array.<number>
Converts a string into byte array Inverse function [[convertByteArrayToString]]
Kind: inner method of util
Returns: Array.<number>
-
A byte array representing the string input
Param | Description |
---|---|
str | The string to be converted |
string
Converts/Encode a String into Hexadecimally encoded Inverse function [[convertHexStringToString]]
Kind: inner method of util
Returns: string
-
The Hex String representing the input string
Param | Description |
---|---|
str | The Hex string to be converted |
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: inner method of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Sums various NQT values and returns in Burst
Kind: inner method of util
Returns:
The sum of all amounts in BURST
Param | Description |
---|---|
...nqts | Variable amount list with NQT string |
boolean
string
string
Array.<number>
string
Array.<number>
string
boolean
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: static property of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Converts BURST-XXXX-XXXX-XXXX-XXXXX into numeric Id
Kind: inner method of util
Returns:
The numeric id, or undefined if address is invalid
Param | Description |
---|---|
address | The BURST address |
Converts a Burst/Block Time (seconds since genesis block) into Date
Kind: inner method of util
Returns:
Date
Param | Description |
---|---|
burstTimestamp | The numeric Id |
Converts a Burst/Block Time (seconds since genesis block) into Unix Epoch Time (milliseconds since 01.01.1970)
Kind: inner method of util
Returns:
Unix Epoch Time (milliseconds since 01.01.1970)
Param | Description |
---|---|
burstTimestamp | The numeric Id |
string
Converts byte array to hexadecimal string Inverse operation of [[convertHexStringToByteArray]]
Kind: inner method of util
Returns: string
-
A hex string representing the byte array input
Param | Default | Description |
---|---|---|
bytes | The (unsigned) byte array to be converted | |
uppercase | false | If true, converts hex string with uppercase characters (Default: false) |
string
Converts a byte array into string Inverse function [[convertStringToByteArray]]
Kind: inner method of util
Returns: string
-
The converted string
Param | Default | Description |
---|---|---|
byteArray | The byte array to be converted | |
startIndex | 0 | The starting index of array to be converted (Default: 0) |
length |
| The number of bytes to be considered, iff startIndex is given. If null the byte array's length is considered |
Converts a Date into Burst/Block Time (seconds since genesis block)
Kind: inner method of util
Returns:
The Burst Timestamp
Param | Description |
---|---|
date | The date to be converted |
Converts the endianess of a hex string. If string is little Endianess it turns into Big Endianess, and vice versa
Kind: inner method of util
Returns:
The converted string as hex string
Param | Description |
---|---|
hexString | The hex string to be converted |
Array.<number>
Converts an hexadecimal string to byte array
Kind: inner method of util
Returns: Array.<number>
-
An byte array representing the hexadecimal input
Param | Description |
---|---|
hex | The hexadecimal string to be converted |
Arbitrary length hexadecimal to decimal conversion https://stackoverflow.com/questions/21667377/javascript-hexadecimal-string-to-decimal-string
Kind: inner method of util
Returns:
A decimal string
Param | Description |
---|---|
hexStr | A hexadecimal string |
string
Converts a Hexadecimally encoded string into String Inverse function [[convertStringToHexString]]
Kind: inner method of util
Returns: string
-
The string represented by the Hex String
Param | Description |
---|---|
hex | The Hex string to be converted |
Helper method to convert a String to number
Kind: inner method of util
Returns:
A number expressed in Burst (not NQT)
exception if argument is invalid
Param | Description |
---|---|
amount | The amount in NQT |
Helper method to Number to String(8 decimals) representation
Kind: inner method of util
Returns:
a NQT number string
Param | Description |
---|---|
n | the number |
Encode a numeric id into BURST-XXXX-XXXX-XXXX-XXXXX
Kind: inner method of util
Returns:
the BURST address in Reed-Solomon encoding, or undefined if passed null, undefined
Param | Description |
---|---|
numericId | The numeric Id |
Array.<number>
Converts a string into byte array Inverse function [[convertByteArrayToString]]
Kind: inner method of util
Returns: Array.<number>
-
A byte array representing the string input
Param | Description |
---|---|
str | The string to be converted |
string
Converts/Encode a String into Hexadecimally encoded Inverse function [[convertHexStringToString]]
Kind: inner method of util
Returns: string
-
The Hex String representing the input string
Param | Description |
---|---|
str | The Hex string to be converted |
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: inner method of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Sums various NQT values and returns in Burst
Kind: inner method of util
Returns:
The sum of all amounts in BURST
Param | Description |
---|---|
...nqts | Variable amount list with NQT string |
boolean
string
string
Array.<number>
string
Array.<number>
string
boolean
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: static property of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Converts BURST-XXXX-XXXX-XXXX-XXXXX into numeric Id
Kind: inner method of util
Returns:
The numeric id, or undefined if address is invalid
Param | Description |
---|---|
address | The BURST address |
Converts a Burst/Block Time (seconds since genesis block) into Date
Kind: inner method of util
Returns:
Date
Param | Description |
---|---|
burstTimestamp | The numeric Id |
Converts a Burst/Block Time (seconds since genesis block) into Unix Epoch Time (milliseconds since 01.01.1970)
Kind: inner method of util
Returns:
Unix Epoch Time (milliseconds since 01.01.1970)
Param | Description |
---|---|
burstTimestamp | The numeric Id |
string
Converts byte array to hexadecimal string Inverse operation of [[convertHexStringToByteArray]]
Kind: inner method of util
Returns: string
-
A hex string representing the byte array input
Param | Default | Description |
---|---|---|
bytes | The (unsigned) byte array to be converted | |
uppercase | false | If true, converts hex string with uppercase characters (Default: false) |
string
Converts a byte array into string Inverse function [[convertStringToByteArray]]
Kind: inner method of util
Returns: string
-
The converted string
Param | Default | Description |
---|---|---|
byteArray | The byte array to be converted | |
startIndex | 0 | The starting index of array to be converted (Default: 0) |
length |
| The number of bytes to be considered, iff startIndex is given. If null the byte array's length is considered |
Converts a Date into Burst/Block Time (seconds since genesis block)
Kind: inner method of util
Returns:
The Burst Timestamp
Param | Description |
---|---|
date | The date to be converted |
Converts the endianess of a hex string. If string is little Endianess it turns into Big Endianess, and vice versa
Kind: inner method of util
Returns:
The converted string as hex string
Param | Description |
---|---|
hexString | The hex string to be converted |
Array.<number>
Converts an hexadecimal string to byte array
Kind: inner method of util
Returns: Array.<number>
-
An byte array representing the hexadecimal input
Param | Description |
---|---|
hex | The hexadecimal string to be converted |
Arbitrary length hexadecimal to decimal conversion https://stackoverflow.com/questions/21667377/javascript-hexadecimal-string-to-decimal-string
Kind: inner method of util
Returns:
A decimal string
Param | Description |
---|---|
hexStr | A hexadecimal string |
string
Converts a Hexadecimally encoded string into String Inverse function [[convertStringToHexString]]
Kind: inner method of util
Returns: string
-
The string represented by the Hex String
Param | Description |
---|---|
hex | The Hex string to be converted |
Helper method to convert a String to number
Kind: inner method of util
Returns:
A number expressed in Burst (not NQT)
exception if argument is invalid
Param | Description |
---|---|
amount | The amount in NQT |
Helper method to Number to String(8 decimals) representation
Kind: inner method of util
Returns:
a NQT number string
Param | Description |
---|---|
n | the number |
Encode a numeric id into BURST-XXXX-XXXX-XXXX-XXXXX
Kind: inner method of util
Returns:
the BURST address in Reed-Solomon encoding, or undefined if passed null, undefined
Param | Description |
---|---|
numericId | The numeric Id |
Array.<number>
Converts a string into byte array Inverse function [[convertByteArrayToString]]
Kind: inner method of util
Returns: Array.<number>
-
A byte array representing the string input
Param | Description |
---|---|
str | The string to be converted |
string
Converts/Encode a String into Hexadecimally encoded Inverse function [[convertHexStringToString]]
Kind: inner method of util
Returns: string
-
The Hex String representing the input string
Param | Description |
---|---|
str | The Hex string to be converted |
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: inner method of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Sums various NQT values and returns in Burst
Kind: inner method of util
Returns:
The sum of all amounts in BURST
Param | Description |
---|---|
...nqts | Variable amount list with NQT string |
boolean
string
string
Array.<number>
string
Array.<number>
string
boolean
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: static property of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Converts BURST-XXXX-XXXX-XXXX-XXXXX into numeric Id
Kind: inner method of util
Returns:
The numeric id, or undefined if address is invalid
Param | Description |
---|---|
address | The BURST address |
Converts a Burst/Block Time (seconds since genesis block) into Date
Kind: inner method of util
Returns:
Date
Param | Description |
---|---|
burstTimestamp | The numeric Id |
Converts a Burst/Block Time (seconds since genesis block) into Unix Epoch Time (milliseconds since 01.01.1970)
Kind: inner method of util
Returns:
Unix Epoch Time (milliseconds since 01.01.1970)
Param | Description |
---|---|
burstTimestamp | The numeric Id |
string
Converts byte array to hexadecimal string Inverse operation of [[convertHexStringToByteArray]]
Kind: inner method of util
Returns: string
-
A hex string representing the byte array input
Param | Default | Description |
---|---|---|
bytes | The (unsigned) byte array to be converted | |
uppercase | false | If true, converts hex string with uppercase characters (Default: false) |
string
Converts a byte array into string Inverse function [[convertStringToByteArray]]
Kind: inner method of util
Returns: string
-
The converted string
Param | Default | Description |
---|---|---|
byteArray | The byte array to be converted | |
startIndex | 0 | The starting index of array to be converted (Default: 0) |
length |
| The number of bytes to be considered, iff startIndex is given. If null the byte array's length is considered |
Converts a Date into Burst/Block Time (seconds since genesis block)
Kind: inner method of util
Returns:
The Burst Timestamp
Param | Description |
---|---|
date | The date to be converted |
Converts the endianess of a hex string. If string is little Endianess it turns into Big Endianess, and vice versa
Kind: inner method of util
Returns:
The converted string as hex string
Param | Description |
---|---|
hexString | The hex string to be converted |
Array.<number>
Converts an hexadecimal string to byte array
Kind: inner method of util
Returns: Array.<number>
-
An byte array representing the hexadecimal input
Param | Description |
---|---|
hex | The hexadecimal string to be converted |
Arbitrary length hexadecimal to decimal conversion https://stackoverflow.com/questions/21667377/javascript-hexadecimal-string-to-decimal-string
Kind: inner method of util
Returns:
A decimal string
Param | Description |
---|---|
hexStr | A hexadecimal string |
string
Converts a Hexadecimally encoded string into String Inverse function [[convertStringToHexString]]
Kind: inner method of util
Returns: string
-
The string represented by the Hex String
Param | Description |
---|---|
hex | The Hex string to be converted |
Helper method to convert a String to number
Kind: inner method of util
Returns:
A number expressed in Burst (not NQT)
exception if argument is invalid
Param | Description |
---|---|
amount | The amount in NQT |
Helper method to Number to String(8 decimals) representation
Kind: inner method of util
Returns:
a NQT number string
Param | Description |
---|---|
n | the number |
Encode a numeric id into BURST-XXXX-XXXX-XXXX-XXXXX
Kind: inner method of util
Returns:
the BURST address in Reed-Solomon encoding, or undefined if passed null, undefined
Param | Description |
---|---|
numericId | The numeric Id |
Array.<number>
Converts a string into byte array Inverse function [[convertByteArrayToString]]
Kind: inner method of util
Returns: Array.<number>
-
A byte array representing the string input
Param | Description |
---|---|
str | The string to be converted |
string
Converts/Encode a String into Hexadecimally encoded Inverse function [[convertHexStringToString]]
Kind: inner method of util
Returns: string
-
The Hex String representing the input string
Param | Description |
---|---|
str | The Hex string to be converted |
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: inner method of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Sums various NQT values and returns in Burst
Kind: inner method of util
Returns:
The sum of all amounts in BURST
Param | Description |
---|---|
...nqts | Variable amount list with NQT string |
boolean
string
string
Array.<number>
string
Array.<number>
string
boolean
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: static property of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Converts BURST-XXXX-XXXX-XXXX-XXXXX into numeric Id
Kind: inner method of util
Returns:
The numeric id, or undefined if address is invalid
Param | Description |
---|---|
address | The BURST address |
Converts a Burst/Block Time (seconds since genesis block) into Date
Kind: inner method of util
Returns:
Date
Param | Description |
---|---|
burstTimestamp | The numeric Id |
Converts a Burst/Block Time (seconds since genesis block) into Unix Epoch Time (milliseconds since 01.01.1970)
Kind: inner method of util
Returns:
Unix Epoch Time (milliseconds since 01.01.1970)
Param | Description |
---|---|
burstTimestamp | The numeric Id |
string
Converts byte array to hexadecimal string Inverse operation of [[convertHexStringToByteArray]]
Kind: inner method of util
Returns: string
-
A hex string representing the byte array input
Param | Default | Description |
---|---|---|
bytes | The (unsigned) byte array to be converted | |
uppercase | false | If true, converts hex string with uppercase characters (Default: false) |
string
Converts a byte array into string Inverse function [[convertStringToByteArray]]
Kind: inner method of util
Returns: string
-
The converted string
Param | Default | Description |
---|---|---|
byteArray | The byte array to be converted | |
startIndex | 0 | The starting index of array to be converted (Default: 0) |
length |
| The number of bytes to be considered, iff startIndex is given. If null the byte array's length is considered |
Converts a Date into Burst/Block Time (seconds since genesis block)
Kind: inner method of util
Returns:
The Burst Timestamp
Param | Description |
---|---|
date | The date to be converted |
Converts the endianess of a hex string. If string is little Endianess it turns into Big Endianess, and vice versa
Kind: inner method of util
Returns:
The converted string as hex string
Param | Description |
---|---|
hexString | The hex string to be converted |
Array.<number>
Converts an hexadecimal string to byte array
Kind: inner method of util
Returns: Array.<number>
-
An byte array representing the hexadecimal input
Param | Description |
---|---|
hex | The hexadecimal string to be converted |
Arbitrary length hexadecimal to decimal conversion https://stackoverflow.com/questions/21667377/javascript-hexadecimal-string-to-decimal-string
Kind: inner method of util
Returns:
A decimal string
Param | Description |
---|---|
hexStr | A hexadecimal string |
string
Converts a Hexadecimally encoded string into String Inverse function [[convertStringToHexString]]
Kind: inner method of util
Returns: string
-
The string represented by the Hex String
Param | Description |
---|---|
hex | The Hex string to be converted |
Helper method to convert a String to number
Kind: inner method of util
Returns:
A number expressed in Burst (not NQT)
exception if argument is invalid
Param | Description |
---|---|
amount | The amount in NQT |
Helper method to Number to String(8 decimals) representation
Kind: inner method of util
Returns:
a NQT number string
Param | Description |
---|---|
n | the number |
Encode a numeric id into BURST-XXXX-XXXX-XXXX-XXXXX
Kind: inner method of util
Returns:
the BURST address in Reed-Solomon encoding, or undefined if passed null, undefined
Param | Description |
---|---|
numericId | The numeric Id |
Array.<number>
Converts a string into byte array Inverse function [[convertByteArrayToString]]
Kind: inner method of util
Returns: Array.<number>
-
A byte array representing the string input
Param | Description |
---|---|
str | The string to be converted |
string
Converts/Encode a String into Hexadecimally encoded Inverse function [[convertHexStringToString]]
Kind: inner method of util
Returns: string
-
The Hex String representing the input string
Param | Description |
---|---|
str | The Hex string to be converted |
boolean
Check for valid Burst address (format: BURST-XXXX-XXXX-XXXX-XXXXX, XXXX-XXXX-XXXX-XXXXX)
Kind: inner method of util
Returns: boolean
-
true, if is a valid address, else false
Param | Type | Description |
---|---|---|
address | string | The address |
Sums various NQT values and returns in Burst
Kind: inner method of util
Returns:
The sum of all amounts in BURST
Param | Description |
---|---|
...nqts | Variable amount list with NQT string |
FAQs
Useful utilities and tools for building Burstcoin applications
We found that @burstjs/util demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.